home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Portable Patmos 1.1 / patmos-src / src / getpid.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-19  |  156 b   |  12 lines  |  [TEXT/KAHL]

  1. #include <Processes.h>
  2. #include <sys/types.h>
  3.  
  4. pid_t getpid(void)
  5.     {
  6.     ProcessSerialNumber mysn;
  7.     GetCurrentProcess(&mysn);
  8.     return mysn.lowLongOfPSN;
  9.     }
  10.  
  11.     
  12.